home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / logiso.000 / logiso / Utils / RCS / Makefile,v < prev    next >
Encoding:
Text File  |  1995-03-24  |  1.1 KB  |  83 lines

  1. head    1.2;
  2. access;
  3. symbols
  4.     VER_0_3:1.2
  5.     VER_0_2:1.1;
  6. locks; strict;
  7. comment    @# @;
  8.  
  9.  
  10. 1.2
  11. date    95.03.24.11.43.35;    author coulter;    state Exp;
  12. branches;
  13. next    1.1;
  14.  
  15. 1.1
  16. date    95.02.18.08.36.38;    author coulter;    state Exp;
  17. branches;
  18. next    ;
  19.  
  20.  
  21. desc
  22. @Makefile for /usr/src/linux/fs/isofs/Utils directory.
  23. @
  24.  
  25.  
  26. 1.2
  27. log
  28. @Checkin version for 0.3 distribution.
  29. @
  30. text
  31. @#
  32. # Makefile for the logiso utilities
  33. # (C) Copyright 1995 by Michael Coulter.  All rights reserved.
  34. #
  35. # Note! Dependencies are done automagically by 'make dep', which also
  36. # removes any old dependencies. DON'T put your own dependencies here
  37. # unless it's something special (ie not a .c file).
  38. #
  39.  
  40. .c.s:
  41.     $(CC) $(CFLAGS) -S $<
  42. .c.o:
  43.     $(CC) $(CFLAGS) -c $<
  44. .s.o:
  45.     $(AS) -o $*.o $<
  46.  
  47. CFLAGS=
  48.  
  49. CSRC_FILES =     logiso_get.c        \
  50.         logiso_stop.c        \
  51.         process_lists.c        
  52.  
  53. OBJS= $(CSRC_FILES:.c=.o)
  54. PROGS = $(CSRC_FILES:.c=)
  55.  
  56. Default: $(PROGS)
  57.  
  58. clean: tidy
  59.     -rm -f $(PROGS)
  60.  
  61. dep:
  62.     $(CPP) -M *.c > .depend
  63.  
  64. tidy:
  65.     -rm -f $(OBJS)
  66.  
  67. #
  68. # include a dependency file if one exists
  69. #
  70. ifeq (.depend,$(wildcard .depend))
  71. include .depend
  72. endif
  73. @
  74.  
  75.  
  76. 1.1
  77. log
  78. @Checkpoint version before fixing /usr/bin install
  79. @
  80. text
  81. @d3 1
  82. @
  83.